![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
compact-base64
Advanced tools
Base64 encoding and decoding for Node.JS and browsers without polyfills
Base64 encoding and decoding for Node.JS and browsers without polyfills.
This package provides a separate entry point in package.json
for bundlers to use, this way Webpack and Browserify (other bundlers aren't tested) users will be able to use the optimized-for-browser version of the library. This means the bundlers won't need to polyfill Node.JS's Buffer
.
For browser environments, the library uses btoa
and atob
, for Node.JS it uses Buffer
.
UMD module named Base64 is available from compact-base64.js
. You can use https://cdn.rawgit.com/ambassify/compact-base64-js/[tag]/compact-base64.js
in your regular HTML scripts by filling in the desired tag.
IE10 and newer + everything else
var Base64 = require('compact-base64');
// base64 encode
var encoded = Base64.encode("hello world");
--> aGVsbG8gd29ybGQ=
// base64 decode
var decoded = Base64.decode(encoded);
--> hello world
// convert base64 to base64url
var urlSafe = Base64.originalToUrl(encoded);
--> aGVsbG8gd29ybGQ
// convert base64 to base64url
var encoded2 = Base64.urlToOriginal(urlSafe);
--> aGVsbG8gd29ybGQ=
// base64url encode
var urlSafe2 = Base64.encodeUrl("hello world");
--> aGVsbG8gd29ybGQ
// base64url decode
var decoded = Base64.decodeUrl(urlSafe2);
--> hello world
FAQs
Base64 encoding and decoding for Node.JS and browsers without polyfills
The npm package compact-base64 receives a total of 2,340 weekly downloads. As such, compact-base64 popularity was classified as popular.
We found that compact-base64 demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.